home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / RIBMakeTexture.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  498 b   |  20 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. #import "RIBCommand.h"
  5.  
  6. @interface RIBMakeTexture:RIBCommand
  7. {
  8.    char         *pictureName, *textureName, *filterFuncName;
  9.    RtToken      sWrap, tWrap;
  10.    RtFloatFunc  filterFunc;
  11.    RtFloat      sWidth, tWidth;
  12. }
  13.  
  14. - setPictureName:(const char *)newPictureName textureName:(const char *)newTextureName
  15.      sWrap:(RtToken)newSWrap tWrap:(RtToken)newTWrap filterFuncName:(const char *)newFilterFuncName
  16.      sWidth:(RtFloat)newSWidth tWidth:(RtFloat)newTWidth; 
  17.  
  18.  
  19. @end
  20.